Coding A Christmas Tree with Python in 10 Minutes (A Beginner-Friendly Project)

python
youtube
Coding A Christmas Tree with Python in 10 Minutes (A Beginner-Friendly Project) #Programming #Python #pythonproject Christmas Tree Python Program Project for Beginners! This script prints a simple ASCII Christmas tree made of stars (*) and a trunk made of vertical bars (|). The Code is below: # --------------------------------------------- # Christmas Tree Program in Python # This script prints a simple ASCII Christmas tree # made of stars (*) and a trunk made of vertical bars (|). # --------------------------------------------- # Set the height of the tree (number of star layers) height = 10 # You can change this to make the tree taller or shorter # ----------------------------- # Build the leafy part of the tree # ----------------------------- for i in range(height): # Number of spaces before the stars (centers the tree) spaces = ' ' * (height - i - 1) # Number of stars for this row (odd numbers: 1, 3, 5, ...) stars = '*' * (2 * i + 1) # Print one row of the tree print(spaces + stars) # ----------------------------- # Build the trunk of the tree # ----------------------------- trunk_width = 3 # Width of the trunk (number of | characters) trunk_height = 3 # Height of the trunk (number of rows) # Center the trunk under the tree trunk_spaces = ' ' * (height - trunk_width // 2 - 1) #Produce a string of n spaces where n is (height - trunk_width // 2 - 1). Note '//' is integer division (e.g. 5 // 2 = 2 and not 2.5) for _ in range(trunk_height): print(trunk_spaces + '|' * trunk_width) ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  2025/12/25      youtube

関連するプログラミング動画 [python]

Our Tag

最近投稿されたプログラミング学習動画

Most Asked SQL Interview Questions and Answers 2026 | SQL Interview Pr

sql

✅ Subscribe to our Channel to learn more...

  2026/03/14

Machine Learning With Python Full Course 2026 | Python Machine Learnin

python
study

🔥Microsoft AI Engineer Program - 🔥Part...

  2026/03/14

Deep Learning Engineer Salary 2026 | How Much A Deep Learning Engineer

study
deep learning

🔥Generative AI, Machine Learning, And In...

  2026/03/14

LangChain Tutorial For Beginners 2026 | LangChain Crash Course | LangC

🔥Applied Generative AI Specialization - ...

  2026/03/14

🔥CloudOps Engineer Roadmap | How to become CloudOps Engineer in 2026

cloud

Are you ready to dive into the world of ...

  2026/03/14

Genuine Simplilearn Review 2026 by Cybersecurity Professional- Arpan S

RPA
Security

When researching online programs, many p...

  2026/03/14

AWS and Cerebras are teaming up to build the fastest possible AI infer

Amazon

AWS and Cerebras announced a collaborati...

  2026/03/13

How Audi Uses AI to Transform Automotive Manufacturing at Scale | Amaz

Amazon

Discover how Audi AG worked with AWS to ...

  2026/03/13

How Storyblok Powers Modern Digital Experiences on AWS | Amazon Web Se

Amazon

Storyblok delivers modern digital experi...

  2026/03/13

If you develop for Android, you’re ready to build for glasses. 👓

android
android

Jetpack Compose Glimmer is here to help ...

  2026/03/13

Preparation Station: Utilizing TOURCAST | Amazon Web Services

Amazon

In Episode 1 of this 4-part series, @ama...

  2026/03/13

Data Science Full Course - Learn Data Science in 12 Hours | Data Scien

🔥Integrated MS+PGP Program in Data Scien...

  2026/03/13

BMW Group powers 3D car visualization with AWS spatial computing | Ama

Amazon

BMW Group's Design and Virtual Product E...

  2026/03/13

How Snowplow Powers Context-Aware AI with Real-Time Behavioral Data on

Amazon

LLMs alone can't deliver relevant custom...

  2026/03/13

PyCon JP TV #62: PyCon JP 2026の共同座長の座談会

Google

PyCon JP Associationが主催するYouTubeライブです。実験...

  2026/03/13

“We’ll make the deadline somehow!” 🫠

Little do you know that you’re the “some...

  2026/03/13